home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / UTILITIE / CPU_MEMO / 3468.ZIP / POPUP.ZIP / WINDTEST.C < prev   
C/C++ Source or Header  |  1988-06-30  |  1KB  |  37 lines

  1. #include <stdio.h>
  2. #include <standard.h>
  3.  
  4. #define BlackOnGreen 32
  5. #define GreenOnBlack  2
  6.  
  7. /******************************************************************************
  8. *   MAIN  MAIN  MAIN  MAIN  MAIN  MAIN  MAIN  MAIN  MAIN  MAIN  MAIN  MAIN    *
  9. ******************************************************************************/
  10.  
  11. main( argc, argv )
  12. int     argc    ;
  13. char    *argv[] ;
  14. {
  15.     BYTE    *p  ;
  16.  
  17.     static BYTE save[80*24*2+1];
  18.     char    buffer[81];
  19.  
  20.     monitor();
  21.  
  22.     FOREVER
  23.     { 
  24.         popup(1,4);
  25.         SaveBox( save, 5, 24, 18, 55 );
  26.         ClearBox( 5, 24, 18, 55, GreenOnBlack );
  27.         border( 5, 24, 18, 55, NULL, NULL, BlackOnGreen );
  28.         border( 9, 24, 14, 55, NULL, NULL, BlackOnGreen );
  29.         PrintCentered( 7, 24, 55, "This is a test", GreenOnBlack );
  30.         prn( 11, 26, "text2", GreenOnBlack );
  31.         prn( 12, 26, "text3", GreenOnBlack );
  32.         GetString( 13, 26, buffer, 25, GreenOnBlack );
  33.         RestoreBox( save, 5, 24, 18, 55 );
  34.     }
  35. }
  36.  
  37.